home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / instools / prelude.zip / LINGUA13.EXE / MAKEFILE < prev    next >
Text File  |  1994-02-17  |  815b  |  59 lines

  1. CC=bcc
  2. LINK=tlink
  3. CC_OPTS=-c -ml -w -d -O -A -P-c
  4. LINK_OPTS=/c /x
  5.  
  6. ## Libraries:
  7. OBJS=c0l
  8. LIBS=cl
  9.  
  10. all: lingua.exe lingdemo.exe etftest.exe
  11.  
  12. clean:
  13.     del *.obj
  14.     del *.exe
  15.     del *.etf
  16.     del ui_text.h
  17.     del *.sym
  18.     del *.bak
  19.     del *.map
  20.  
  21. lingua.exe: lingua.obj lingua.h
  22.     $(LINK) $(LINK_OPTS) @&&!
  23. $(OBJS)+
  24. lingua.obj
  25. $*, ,$(LIBS)
  26. !
  27.  
  28. lingdemo.exe: lingdemo.obj ui_text.obj
  29.     $(LINK) $(LINK_OPTS) @&&!
  30. $(OBJS)+
  31. lingdemo.obj+
  32. ui_text.obj
  33. $*, ,$(LIBS)
  34. !
  35.  
  36. etftest.exe: etftest.obj ui_text.obj
  37.     $(LINK) $(LINK_OPTS) @&&!
  38. $(OBJS)+
  39. etftest.obj+
  40. ui_text.obj
  41. $*, ,$(LIBS)
  42. !
  43.  
  44. ui_text.h: english.txt
  45.     lingua english
  46.     lingua francais
  47.     lingua deutsch
  48.     lingua nl
  49.  
  50. lingdemo.c: ui_text.h
  51.     lingua english
  52.     lingua francais
  53.     lingua deutsch
  54.     lingua nl
  55.  
  56. .c.obj:
  57.     $(CC) $(CC_OPTS) {$< }
  58.  
  59.